@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lateef&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    text-decoration: none;
    background-color: #fafafa;
    font-family: 'Roboto', sans-serif;
}
.container {
    align-items: center;
    max-width: 1200px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.vision-mission {
    padding: 40px;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.vision-mission-left,
.approach-right {
    width: 48%;
}

.vision, .mission {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.approach-right {
    display: flex;
    flex-direction: column;
}

.approach-item {
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center; /* Align icon and text horizontally */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.approach-item .icon {
    font-size: 30px; /* Icon size */
    margin-right: 15px; /* Space between icon and text */
    color: #333;
}

.approach-text {
    font-size: 14px; /* Smaller text size for the description */
    color: #555;
}

.approach-item p {
    margin: 0; /* Remove any default margin */
}
.why-syorai {
    padding: 40px;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

li .icon {
    font-size: 24px;
    margin-right: 15px;
    color: #333;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.content {
    width: 60%; /* Adjust the content section width */
}
.immigration-procedures {
    padding: 60px;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

li .icon {
    font-size: 24px;
    margin-right: 15px;
    color: #007bff;
}

.procedures, .documents {
    width: 48%; /* Set to 48% for both sides to make them 50% with some gap */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack sections vertically on mobile */
    }

    .procedures, .documents {
        width: 100%; /* Full width on mobile */
    }

    h2 {
        font-size: 22px;
    }

    li {
        font-size: 14px;
    }
}

/* Animation for the list items */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.study-in-japan {
    background-color: #f4f4f4;
    padding: 50px;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.text-content {
    width: 100%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
}

h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}
.services {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.service-item h3 {
    font-size: 1.5em;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.service-item p {
    font-size: 1.1em;
}

.service-item ul {
    list-style: none;
    padding-left: 0;
}

.service-item ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.icon {
    margin-right: 10px;
    font-size: 1.3em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-item h3 {
        font-size: 1.3em;
    }

    .service-item p,
    .service-item ul li {
        font-size: 1em;
    }
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .text-content {
        width: 100%;
        padding: 20px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack sections vertically on mobile */
        gap: 20px;
    }

    .content {
        width: 100%; /* Full width for content in mobile view */
    }

    .image img {
        max-width: 50%; /* Adjust image size on mobile */
        margin-bottom: 20px;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .vision-mission-left, .approach-right {
        width: 100%; /* Make each section take full width */
    }

    .container {
        flex-direction: column; /* Stack the sections vertically */
        gap: 20px;
    }

    .approach-item {
        text-align: left;
    }

    .approach-item .icon {
        font-size: 40px; /* Adjust icon size for mobile view */
    }

    .approach-text {
        font-size: 16px; /* Larger text size for mobile */
    }
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* Mobile view */
@media (max-width: 768px) {
    .container {
        display: contents; /* Changes to contents in mobile view */
    }

    .text, .image {
        width: 100%; /* Make both text and image take full width */
    }
}
.text, .image {
    width: 50%;
    padding: 10px;
}

.image img {
    max-width: 100%;
    height: auto;
}

/* Mobile view */
@media (max-width: 768px) {
    .text, .image {
        width: 100%; /* Make both text and image take full width */
    }
}
.text {
    flex: 1;
    padding: 20px;
    transform: translateX(-100%);
    animation: slideIn 1s forwards;
}
.text {
    max-width: 600px;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
}
.text h1 {
    color: #2c3e50;
    margin-bottom: 15px;
}
.text p {
    line-height: 1.6;
    font-size: 16px;
}
.text h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}
.text p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    color: #555;
}
.image {
    flex: 1;
    text-align: center;
    transform: translateX(100%);
    animation: slideInRight 1s forwards;
}
.secondimage {
    flex: 1;
    text-align: center;
    transform: translateX(100%);
    animation: slideInLeft 1s forwards;
}
.image img {
    max-width: 100%;
    border-radius: 12px;
}
@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    to {
        transform: translateX(0);
    }
}
a {
    transition: all 0.3s ease 0s;
    text-decoration: none !important;
    outline: none !important;
}

.bucketbox {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.bucketrow {
    display: flex;
    flex-wrap: wrap;
}

.box-package {
    min-width: 320px;
    width: 100%;
    height: auto;
}

.head-left {
    display: flex;
    padding: 5px 0;
}

.head-right {
    float: right;
    position: relative;
}

.head-right ul {
    text-decoration: none;
    list-style: none;
    margin: 0;
}

.main-head {
    background-color: #233568;
    width: 100%;
    /* padding: 5px 0; */
    font-weight: 500;
    z-index: 9;
}

.head-left span {
    display: inline-flex;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.ul-right {
    display: inline-flex;
    float: right;
}

.contactus {
    display: inline-flex;
}

.contactus a {
    text-decoration: none !important;
}

.contactus a span {
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}

.poz-icon {
    font-size: 18px;
    color: #fff;
    padding: 0 5px;
}

.header-logo {
    position: relative;
    z-index: 1;
}

.header-logo a {
    text-decoration: none;
    outline: none;
    border: none;
}

.header-logo a img {
    max-width: 100%;
    height: 75px;
}

.header-info {
    position: relative;
    overflow: hidden;
    float: right;
    padding: 25px 0px;
}

.header-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-info ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
    position: relative;
    padding-left: 45px;
}

.icon-hold {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    border-radius: 30px;
    left: 0;
    top: 0;
    box-shadow: 0 2px 20px #ddd;
    background-color: white;
}

.icon-hold:hover {
    cursor: pointer;
}

.icon-hold i {
    font-size: 20px;
    font-weight: 500;
    color: #26001b;
}

.icon-hold::before {
    color: #26001b;
}

.name-hold {
    padding-left: 20px;
}

.name-hold strong {
    color: #0E517C;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.name-hold p {
    color: #26001b;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 14px;
}

.nav-menu {
    position: relative;
    z-index: 99;
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 5%), 0 3px 1px -4px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(78 67 192 / 59%);
}

.clearfix {
    clear: both;
}

.menu-style {
    position: relative;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.navigation {
    position: relative;
    margin: 0;
    list-style: none;
    float: right;
}

.navigation li {
    position: relative;
    display: inline-block;
    padding: 0;

}

.navigation li.active a {
    position: relative;
}

.navigation li a {
    position: relative;
    color: #2d4059;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 15px;
    opacity: 1;
    padding: 30px 15px;
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    text-transform: uppercase;
    transition: all 500ms ease 0s;
    cursor: pointer;
    text-decoration: none;
}

.slider-wrapper {
    position: relative;
}

.slider-content {
    position: absolute;
    right: 50%;
    left: 50%;
    bottom: 50%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

.dot li {
    position: relative;
    display: inline-block;
    width: 20px !important;
    height: auto !important;
    background: #fff;
    vertical-align: bottom;
    transition: all .3s;
    cursor: pointer;
}

.dir span:hover {
    background: rgba(0, 0, 0, .8);
    color: #fff !important;
    transition: all .2s;
}

.dir span {
    background: #fff;
    left: 0;
    position: absolute;
    width: 20px;
    height: 35px;
    color: black;
    line-height: 48px;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 5%);
    text-align: center;
    cursor: pointer;
}

.dir span i {
    position: relative;
    bottom: 7px;
}

.ns span:hover {
    background: rgba(0, 0, 0, .8);
    color: #fff !important;
    transition: all .2s;
}

.ns span {
    background: #fff;
    right: 0;
    position: absolute;
    width: 20px;
    height: 35px;
    color: black;
    line-height: 48px;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 5%);
    text-align: center;
    cursor: pointer;
}

.ns span i {
    position: relative;
    bottom: 7px;
}

.Leadbox {
    width: 100%;

}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.overview_img_inner {
    position: relative;
    text-align: center;
    display: inline;
}

.overview_img1 {
    display: inline-block;
    position: relative;
}

.p-25 {
    padding: 25px 0;
}

.overview_img img {
    position: relative;
    transition: all .30s linear;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.overview_text_inner {
    background: #fff;
    padding: 20px;
}

.align-center {
    text-align: center;
}

.Leadshadow {
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
}

.section_title {
    text-transform: capitalize;
    z-index: 10;
    position: relative;
}

.section_title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: #233568;
}

.section_sub_title {
    position: relative;
}

.section_sub_title p {
    text-transform: uppercase;
    color: #666;
    font-weight: 500;
    line-height: 16px;
    padding-bottom: 8px;
    text-align: center;
}

.section_sub_title:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 270px;
    left: calc(50% - 135px);
    top: 133%;
    background: #B57A36;
}

.overview_text_inner .section_title h1 {
    padding: 20px 0 22px 0;
    margin: 0;
    color: #1f3450;
}

.carousel-inner::after {
    display: block;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #00000040 50%);
    bottom: 0;
    height: 300px;
    width: 100%;
    content: '';
}

.caption {
    opacity: 1;
    transform: translateY(-50%);
    position: absolute;
    font-weight: bold;
    top: 85%;
    left: 0;
    right: 0;
    text-align: left;
    padding: 15px;
    color: #fff;
    font-size: 40px;
    letter-spacing: 0.02em;
    z-index: 1;
    transition: all 0.3s ease;
    display: block;
    margin: auto;
}

.caption-inner {
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

.caption-title {
    color: #fff;
    font-size: 50px;
    line-height: 50px;
    margin: 0;
    text-shadow: 0px 4px 14px #000000;
    font-weight: 900;
    font-family: 'Frank Ruhl Libre', serif;
    text-transform: uppercase;
}

.caption-subtitle {
    font-weight: 150;
    text-shadow: 0 2px 6px rgb(0 0 0 / 45%);
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 2.2rem;
    letter-spacing: 2px;
    font-family: 'Frank Ruhl Libre', serif;
    margin: 0;
}

.btn-caption {
    color: #fff !important;
    border: #fff solid 1px !important;
    border-radius: 20px !Important;
    font-weight: 500 !important;
    font-family: 'Frank Ruhl Libre', serif;
    background-color: #233568;

}

.section_title h1 {
    padding: 30px 0;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: 'Frank Ruhl Libre', serif;
    margin: 0;
    text-transform: uppercase;
}

.section_body span {
    text-align: justify;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.drip-sub li {
    width: 100%;
    position: relative;
    border-left: 1px solid rgba(222, 224, 229, 0.47);
    display: contents;
    margin-bottom: 0;
}

.drip-sub li a {
    border-bottom: 1px solid #dddddd;
    border-right: medium none;
    box-shadow: 0 1px 1px rgb(255 255 255 / 18%) inset;
    color: #fff;
    font-size: 12px;
    height: auto;
    margin: 0;
    text-align: left;
    transition: padding 0.2s ease-in-out 0s;
    width: 100%;
    display: block;
    font-weight: 500;
    position: relative;
    z-index: 9;
    padding: 0 15px;
    line-height: 40px;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

.drip-sub li li:first-child>a {
    border-left: none;
}

.drip-sub {
    background-color: #233568;
    margin: 0;
    box-shadow: 0 0 2px 0 rgb(0 0 0 / 12%);
    min-width: 250px;
    position: absolute;
    transition: opacity 0.4s ease-in-out 0s;
    height: 250px;
    overflow-x: hidden;
    overflow-y: scroll;
}

#show-me2 {
    animation: rotateMenu 500ms ease-in-out;
    transform-origin: top center;
    display: none;
}

#show-me1 {
    animation: rotateMenu 500ms ease-in-out;
    transform-origin: top center;
    display: none;
}
#show-me3 {
    animation: rotateMenu 500ms ease-in-out;
    transform-origin: top center;
    display: none;
}

@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg)
    }

    70% {
        transform: rotateX(20deg)
    }

    100% {
        transform: rotateX(0deg)
    }
}

.magicnav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.2s;
    box-shadow: 0 4px 8px -3px #555454;
    padding-top: 0px;
}

.magicnav a {
    text-decoration: none !important;
    color: #1e212d;
    transition: 0.3s
}

.magicnav .closebtn {
    position: absolute;
    top: 0px;
    left: 0;
    padding: 0 8px;
    background: red;
    font-size: 30px;
    color: #fff;
}

.magicnav-heading {
    font-size: 36px;
    color: #fff;
}

.mobinav {
    display: block;
    position: relative;
    font-size: 25px;
    padding: 5px;
    color: #000316;
}

.mobinav i {
    padding: 20px;
    float: right;
}

.holdown {
    width: 100%;
    margin: 30px auto 20px;
    background: #FFF;
    border-radius: 0px;
}

.holdown .link {
    cursor: pointer;
    display: block;
    padding: 15px 15px;
    color: #4D4D4D;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    border-bottom: 1px solid #CCC;
    position: relative;
    transition: all 0.4s ease
}

.section_body {
    text-align: justify;
}

.holdown li i {
    position: relative;
    font-size: 18px;
    color: #595959;
    transition: all 0.4s ease
}

.holdown li i.right-angle {
    position: absolute;
    right: 0;
}

.holdown li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px
}

.holdown li.open .link {
    color: #000316;
}

.holdown li.open i {
    color: #000316;
}

.holdown li.open i.fa-chevron-down {
    transform: rotate(180deg)
}

.childmenu {
    background-color: #233568;
    display: none;
    color: #fff;
    font-size: 14px;
}

.childmenu li {
    border-bottom: 1px solid #dddddd;
    opacity: 0.7;
}

.childmenu a {
    display: block;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Frank Ruhl Libre', serif;
    padding: 12px;
    font-weight: 500;
    padding-left: 25px;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.div_nav {
    display: none;
    margin-top: 0;
    background: #fff;
    position: relative;
    z-index: 2;
}

.manu-item {
    list-style-type: none;
    width: 100% !important;
    padding: 0 5px;
    margin: 0 !important;
    position: relative;
    border-top: 1px #d2d2d2 solid;
}

.level-top {
    font-size: 15px;
    line-height: 15px;
    text-transform: capitalize;
    color: #000;
}

.level-top span {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #000316;
}

.brbtn {
    border-bottom: 1px #d2d2d2 solid;
}

.backgroun {
    background-color: #fafafa;
    display: none;
}

.plus i {
    color: white !important;
    font-size: 15px;
    top: 0 !important;
    float: right;
    padding-right: 15px;
    position: relative !important;
}

/* services */
.wb-services .services-item {
    background-color: #233568;
    padding: 20px 15px;
    box-shadow: 0 4px 2px -2px #fff;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease 0s;
}

.animation-hover:not(:hover) {
    animation-name: none;
}

.wb-services .services-icon {
    height: 120px;
    width: 125px;
    background-color: #1F3450;
    line-height: 88px;
    text-align: center;
    position: absolute;
    top: -50px;
    font-size: 35px;
    box-shadow: 0 -4px 2px -2px #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
    transition: all 0.3s ease 0s;
}

.wb-services .services-icon i {
    display: inline-block;
}

.wb-services .services-desc {
    text-align: center;
    margin-top: 6px;
}

.services-desc a {
    transition: all 0.3s ease 0s;
    text-decoration: none !important;
    outline: none !important;
}

.services-desc .services-title {
    position: relative;
    color: #fff;
    font-size: 20px;
    z-index: 10;
    font-family: 'Frank Ruhl Libre', serif;
}

.section_foot {
    position: relative;
    text-align: center;
    padding: 10px 0;
}

.partner-wrap img {
    width: 100%;
    height: auto;
}

.partner-item {
    margin: 20px 0;
    box-shadow: 0 2px 8px 0px rgb(215 240 240);
    background-color: #fff;
    border: solid 1px #0089cf;
}

.partner-item .partner-img {
    position: relative;
    overflow: hidden;
}

.partner-item .partner-img:before {
    content: '';
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: transparent;
    border: 5px solid rgba(255, 255, 255, 0.7);
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: .5s all ease;
}

.partner-item .partner-img:hover:before {
    transform: translateX(-50%) translateY(-50%) rotate(-270deg);
    border: 0;
    background: rgba(33, 33, 33, 0.5);
}

.partner-item .partner-img .social-icon {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: .8s all ease;
}

.partner-item .partner-img .social-icon a i {
    margin-right: 8px;
    color: #fff;
}

.partner-item .partner-img:hover .social-icon {
    opacity: 1;
    visibility: visible;
}

.icon-size {
    font-size: 40px !important;
}

.partner-item .partner-body {
    padding: 10px;
    text-align: center;
    background-color: #fff;
}

.Utitle {
    font-size: 20px;
    color: black;
    font-weight: bold;
    margin-bottom: 0px;
}

.partner-item .partner-body .Udesignation {
    font-size: 14px;
}

.newslist-bucket {
    overflow-y: auto;
    list-style: none !important;
    height: 380px;
    overflow-x: hidden;
}

.newslist-bucket .newslist-item {
    overflow: hidden;
    padding: 15px;
    border: 1px solid rgba(34, 34, 34, 0.1);
    transition: all 0.3s ease 0s;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.newslist-bucket .newslist-item:hover {
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.newslist-bucket .newslist-item .news-img {
    flex: 0 0 20%;
    max-width: 20%;
    padding-right: 15px;
    float: left;
}

.newslist-bucket .newslist-item .news-img img {
    width: 100%;
    max-width: 85px;
    height: auto;
}

.newslist-bucket .newslist-item .news-content {
    flex: 0 0 80%;
    max-width: 80%;
    float: left;
}

.newslist-bucket .newslist-item .news-title {
    font-size: 16px;
    margin-bottom: 7px;
}

.newslist-bucket .newslist-item .news-title a {
    color: #212121;
}

.newslist-bucket .newslist-item .news-date {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.newslist-item .news-date i {
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    margin-right: 4px;
    color: #ff3115;
}

.newslist-item .news-date span {
    color: #505050;
}

.justify-align {
    text-align: justify;
}

.newslist-item .news-desc p {
    margin-bottom: 0;
}

.emb-respon {
    position: relative;
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 9px;
    overflow: hidden;
}

.emb-respon iframe {
    width: 100%;
    box-shadow: 0 10px 10px rgb(0 0 0 / 50%);
}

.footer_area_bottom {
    background-repeat: repeat;
    background-color: #0e122b;
    padding: 0px 0px;
    color: #b8b8b8;
    position: relative;
    text-align: center;
}

.copyright-right {
    padding-top: 10px;
    position: relative;
    z-index: 10;
}

.copyright-right p {
    color: #fff;
    font-size: 16px !important;
    font-family: 'Roboto', sans-serif;
    padding-top: 10px;
}

.copyright-right p a {
    color: #B57A36;
}

.footer_social_area {
    display: inline-block;
    vertical-align: middle;
}

/* SOCIAL */
.social-icons-ql li {
    list-style: none;
    float: left;
    width: 40px;
    height: 40px;
    line-height: 45px;
    line-height: 45px;
    background: #000;
    text-align: center;
    margin: 10px 5px;
    border: solid 1px white;
}

.social-icons-ql li:nth-child(1) {
    width: 40px;
    height: 40px;
    line-height: 48px;
    margin: 10px 5px;
    background: #34558E;
}

.social-icons-ql li:nth-child(1) i {
    font-size: 25px;
}

.social-icons-ql li:nth-child(2) {
    background: #25B8E6;
}

.social-icons-ql li:nth-child(3) {
    background: rgba(0, 122, 181, 1);
}

.social-icons-ql li:nth-child(4) {
    background: #056162;
}

.social-icons-ql li:nth-child(5) {
    background: #CC2028;
}

.social-icons-ql li:nth-child(6) {
    background: #E05929;
}

.social-icons-ql li:nth-child(7) {
    background: #EB4924;
}

.social-icons-ql li i {
    color: #fff;
    font-size: 25px;
}
@media (min-width: 1281px) {
    .carousel-item img{
        max-height: 600px;

    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .carousel-item img{
        max-height: 600px;
    }
}
@media (max-width: 768px) {
    .bannertext {
        font-size: 12px;
    }
}
*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-thumb {
    background-color: #233568;
}

*::-webkit-scrollbar-track {
    background-color: #fff;
}

.testimonial-item {
    padding: 30px;
    margin: 5px;
    box-shadow: 0 -10px 0px 0px #0089cf;
    border: solid #0089cf 1px;
    background-color: #ffffff;

}

.testimonial-item .testi-img {
    position: absolute;
    top: 20px;
    right: 40px;
    margin: 0 auto;
    width: 110px;
    height: 110px;
    padding: 5px;
    background: #fff;
    border-radius: 50%;
}

.testimonial-item .testi-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.testimonial-item .testi-desc {
    padding: 40px 0;
    position: relative;
}

.testimonial-item .testi-desc .testi-name {
    font-size: 25px;
    margin-bottom: 0px;
}

.testimonial-item .testi-desc p {
    font-size: 23px;
    line-height: 26px;
    margin: 0 0 26px;
    margin-bottom: 0;
    font-family: 'Lateef', cursive;
}

.testimonial-item .testi-desc:before {
    content: "\f10d";
    top: 0;
    left: 0;
}

.testimonial-item .testi-desc::before,
.testimonial-item .testi-desc::after {
    position: absolute;
    font-family: FontAwesome;
    font-size: 26px;
    color: #1f72ae;
}

.testimonial-item .testi-desc:after {
    content: "\f10e";
    bottom: 0;
    right: 0;
}

.council-section h3 {
    font-size: 20px;
    color: #0089cf;
    text-align: center;
}

#breadcrumb {
    margin-bottom: 0px;
    background-color: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb li a {
    color: #0089cf !important;
}

.sec-spacer {
    padding: 25px 0;
}

.forminput {
    border-radius: 0px !important;
    box-shadow: none !important;
}

.btn.btn-primary.btn-custome {
    margin-top: 34px;
    width: 125px;
    background-image: linear-gradient(to left, #1f3450, #24486e, #255c8d, #1f72ae, #0089cf) !important;
    border-radius: 0px !important;
    font-size: 15px;
}

.address-section {
    text-align: center;
    margin: 50px 0;
}

.address-section .address-info {
    background: #f0f0f0;
    border: 1px solid #e1e1e1;
    padding: 25px 0 23px;
}

.address-section .address-info i {
    color: #0089cf;
    font-size: 36px;
    margin: 0;
    padding: 0;
}

.address-section .address-info h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #212121;
    margin: 0;
    padding: 15px 0;
}

.address-section .address-info p {
    color: #505050;
    margin: 0;
    padding: 0;

}

.bucketcourse {
    margin: 0;
    box-shadow: 0 -4px 2px -2px #0089cf;
    border: solid #fafafa 2px;
    background-color: #ffffff;
    height: 100%;
    overflow-x: hidden;
    max-height: 500px;
    overflow-y: scroll;
}

.bucketcourse li {
    color: #505050;
    display: block;
    padding: 10px;
    border-bottom: solid #fafafa 2px;
    position: relative;
    float: left;
    text-align: justify;
    list-style: none;
    width: 100%;
    height: auto;
}

.bucketcourse li:last-child {
    border: none;
}

.bucketcourse li:hover {
    color: white;
    background-image: linear-gradient(to left, #1f3450, #24486e, #255c8d, #1f72ae, #0089cf) !important;
}

.bucketcourse li input[type=radio] {
    visibility: visible;
}

.bucketcourse li label {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    padding: 0 10px;
    text-transform: uppercase;
    margin: 0;
    z-index: 9;
    cursor: pointer;
}

.Desc {
    z-index: 1;
    background-color: white;
}

.meta-bucket {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.meta-bucket li.meta {
    overflow: hidden;
}

.meta-bucket li {
    padding-right: 30px;
    position: relative;
}

.meta-bucket li.meta .image {
    float: left;
}

.meta-bucket li.meta .image img {
    width: 196px;
    height: 101px;
}

.meta-bucket li.meta .college-name {
    margin-left: 15px;
    margin-bottom: 0;
}

.course-des-tabs {
    margin-top: 15px;
}

.tabs-cyan {
    margin: 0;
    border: 0;
}

.course-des-tabs .tab-btm .tabs-cyan .nav-item {
    width: 25%;
}

.course-des-tabs .tab-btm .tabs-cyan .nav-item a.active {
    position: relative;
    background: #fff;
    border-bottom: none;
    color: #1f72ae;
    border: 1px solid #eee;
    border-right: 0;
    font-weight: 600;
}

.course-des-tabs .tab-btm .tabs-cyan .nav-item a.active:before {
    content: '';
    position: absolute;
    left: 0;
    right: 3px;
    top: 0;
    height: 2px;
    z-index: 10;
    width: 100%;
    background-image: linear-gradient(to left, #1f3450, #24486e, #255c8d, #1f72ae, #0089cf) !important;
}

.course-des-tabs .tab-btm .tabs-cyan .nav-item a {
    border: 1px solid #eee;
    background: #f9f9f9;
    border-right: 0;
    color: #212121;
    font-weight: 600;
}

.course-des-tabs .tab-content {
    border-radius: 0;
    border: 1px solid #eee;
    border-top: 0;
    padding: 60px 30px;
}

.course-des-tabs .tab-content .tab-pane h4.desc-title {
    padding-bottom: 15px;
    position: relative;
}

.course-des-tabs .tab-content .tab-pane h4 {
    font-size: 20px;
}

.course-des-tabs .tab-content .tab-pane h4.desc-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background-image: linear-gradient(to left, #1f3450, #24486e, #255c8d, #1f72ae, #0089cf) !important;
}

.course-des-tabs .tab-content .tab-pane p {
    margin: 0 0 26px;
}

.search-drop {
    display: flex;
    position: relative;
    left: 0;
    z-index: 11;
    animation: arrowInOut 500ms ease-in-out;
}

.Relement {
    display: flex;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #ced4da;
    position: relative;
}

.R-wrap {
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    background-color: #fff;
}

.r-form {
    border-style: none;
    color: #393e46;
    position: relative;
    height: 100%;
    top: 0;
    width: 100%;
    z-index: 9;
    background-color: initial;
    font-size: 16px;
}

.r-form fieldset {
    right: 0;
    margin: 0;
    width: 100%;
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 0;
    height: 100%;
    border-width: 0;
}

.r-form fieldset>div {
    width: 100%;
    height: 100%;
}

.r-form input[placeholder] {
    left: 0;
    position: absolute;
}

.r-form fieldset>div input {
    border: none;
    height: 100%;
    width: 100%;
    padding: 0 8px;
    line-height: normal;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}

.find-btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    cursor: pointer;
    background-image: linear-gradient(to left, #1f3450, #24486e, #255c8d, #1f72ae, #0089cf) !important;
    position: relative;
}

.find-btn span {
    margin: auto;
}

.find-btn span i {
    color: #fff;
}

input:focus {
    outline: none !important;
}
.categories:before, .level:before {
    position: absolute;
    font-family: FontAwesome;
    content: "\f0d7";
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
.search-form select, .search-form button, .search-form input {
    height: 50px;
    width: 100%;
    padding: 0 15px;
    color: #777;
    border: none;
}
.search-form select {
    appearance: none;
    outline: none;
}
.course-network{
    margin: 0 10px;
}
.course-network ul {
    padding: 0;
    margin: 0;
    list-style: outside none none;
}
.course-network ul li {
    float: left;
    list-style: none;
}
.course-network ul li a {
    padding: 5px 10px;
    margin: 0 6px 10px 0;
    display: block;
    background-image: linear-gradient(to right, #1f3450, #24486e, #255c8d, #1f72ae, #0089cf);
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 25px;
}
.search-btn button{
    background-color: #1f72ae;
    color: white;
}
button:focus{
    outline: none;
}
.demo-gallery{
    background-color: white;
}
.demo-gallery > ul {
    margin-bottom: 0;
}
.demo-gallery > ul > li {
    float: left;


}
.demo-gallery > ul > li a:hover{
    box-shadow: none;
}
.demo-gallery > ul > li a {
    border: 3px solid #FFF;
    border-radius: 3px;
    display: block;
    overflow: hidden;
    background-color: #fafafa;
    position: relative;
    margin-bottom: 30px;
    float: left;
    box-shadow: 0 10px 10px rgb(0 0 0 / 20%);
}
.demo-gallery > ul > li a > img {
    transition: transform 0.15s ease 0s;
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
    background-color: #fafafa;
}
.demo-gallery > ul > li a:hover > img {
    transform: scale3d(1.02, 1.02, 1.02);
}

.image_details {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    display: none;
    visibility: hidden;
    transition: .3s all linear;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.fancy-boxs:hover .image_details{
    display: block;
    visibility: visible;
}
.image_details i {
    color: #fff;
    font-size: 25px;
    z-index: 10;
    font-weight: 500;
    transition: 600ms all linear;
}
.fancy-boxs::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0px;
    top: 0px;
    opacity: 0;
    transition: all 300ms linear 0s;
}
.fancy-boxs:hover:before {
    opacity: 1;
}
.course-item {
    margin: 40px 0;
    background-color: #fafafa;
    border: #1f72ae solid 1px;

}
.course-item .course-img {
    position: relative;
}
.course-item .course-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 33, 33, 0.8);
    transition: all 0.3s ease 0s;
    opacity: 0;
}
.cou-item .cou-title {
    font-size: 20px;
    padding: 10px;
    width: 100%;
    margin: 0;
}
.cou-title h1{
    font-size: 20px;
    color: #212121;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-top: 25px;
    margin-bottom: 25px;
}
.cou-item{
    display: flex;
    padding: 14px;
    background-color: #f3f0f0;
}
.cou-item .cou-icon img{
    width: 125px;
    height: 125px;
}
.course-item .course-img img {
    width: 100%;
    height: 220px;
}
.course-category {
    margin-bottom: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #1f72ae;
}
.partner-img a img{
    max-width: 270px;
    height: 213px;
    width: 100%;

}
.course-title {
    font-size: 19px;
    margin-bottom: 7px;
}
.course-title a {
    color: #212121;
    font-size: 15px;
    /* letter-spacing: 1px;
    text-transform: uppercase; */
}
.course-title {
    font-size: 15px;
    margin-bottom: 7px;
}
.course-value {
    margin-left: 1px;
    display: inline-block;
    font-size: 14px;
    color: #1f72ae;
    font-weight: 600;
}
.course-value span {
    color: #777777;
}
.course-body {
    margin: 5px 0;
}
.course-button{
    float: left;
    text-align: center;
}
.course-button a {
    height: 34px;
    display: inline-block;
    line-height: 34px;
    text-align: center;
    margin-left: 17px;
    min-width: 125px;
    border-radius: 20px;
    padding: 0 20px;
    background-color: #1f72ae;
    color: #fff;
    transition: all 0.3s ease 0s;
    font-weight: 600;
}
.pb-one {
    padding-bottom: 20px;
}
.pb-one h4 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
.wellcome-left-colmun .text {
    position: relative;
    margin: 20px 0px 25px;
}
.wellcome-left-colmun .text h6 span {
    position: relative;
    font-size: 60px;
    line-height: 27px;
    color: #1f72ae;
    font-style: normal;
}
.wellcome-left-colmun .text h6 {
    padding-left: 90px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
    font-family: 'Lora', serif;
    color: #222;

}
.wellcome-left-colmun p{
    font-size: 15px;
    line-height: 22px;
    color: #2d2a2a;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    text-align: justify;
}
/* new */
.ws-service{
    background-color: #f3f4ed;
}
.ws-bucket{
    position: relative;
}
.ws-item{
    margin-bottom: 30px;
}
.ws-item .item {
    background: #fff;
    width: 100%;
    display: inline-block;
}
.ws-item .item a {
    color: #000316;
    outline: 0;
    text-decoration: none!important;
    transition: all .3s ease-in-out;
    display: inline-flex;
}
.ws-item .item .ws-icon {
    float: left;
    background-color: #233568;
    width: 115px;
    height: 100px;
    color: #fff;
    font-size: 42px;
    text-align: center;
    line-height: 100px;
    transition: .3s ease-in-out;
}
.ws-icon {
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}
.ws-item .item .ws-title {
    font-size: 22px;
    display: inline-block;
    width: 100%;
    color: #000316;
    text-align: center;
    padding: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}
.ws-desc{
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
    color: #000316;
    padding: 12px 40px 40px;
    display: inline-block;
    width: 100%;
}
.ws-item .item .ws-more {
    padding: 0 40px 40px;
    display: inline-block;
    width: 100%;
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.sp-footer {
    padding: 40px 0;
}
.bg-four {
    background-color: #233568;
}
.footer-about-widget {
    margin-right: 50px;
}
.footer-about-widget .footer-logo {
    padding-bottom: 35px;
}
.footer-logo figure {
    margin: 0px;
}

.footer-logo figure a img {
    max-width: 250px;
    width: 100%;
    background-color: white;
    height: auto;
}
.footer-about-widget p {
    text-align: justify;
    color: #fff;
}
.fnt-size14 {
    font-size: 16px;
}
.main-footer .sec-title-one {
    margin-bottom: 25px;
    text-align: center;
}
.pb-one {
    padding-bottom: 20px;
}

.sec-title-one {
    position: relative;
    bottom: 0px;
    border-bottom: solid white 2px;
}
.main-footer h6 {
    font-size: 24px;
    line-height: 27px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    text-transform: capitalize;
}
.main-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-menu-link li a {
    font-size: 16px;
    color: #fff;
    line-height: 35px;
    transition: all 500ms ease;
}
.footer-blog .item {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    display: flex;
}
.footer-blog .icon-text {
    position: relative;
    padding-left: 25px;
}
.footer-blog .icon-box i {
    font-size: 20px;
    /* color: #0084b4; */
    color: #fff;
}
.footer-blog .icon-text p {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 5px;
}

.footer-blog .icon-text p {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
}
.footer-blog .icon-text a {
    font-size: 15px;
    color: #fff;
}
.imz img{
    width: 100%;
    height: auto;
}

.linear-bg{
    background: linear-gradient(#fefefe, #fff);
}
/* COLLEGE */
.bengaledu-item {
    border: none;
    background: #fff;
    box-shadow: 0 2px 8px 0px rgb(215 240 240);
    padding: 10px;
    margin: 5px;
    border: solid 1px #0089cf;

}
.bengaledu-item .cource-img {
    position: relative;
}
.bengaledu-item .cource-img img {
    width: 100%;
    height: 160px;
    display: block;
    transition: all 0.3s ease 0s;
}
.bengaledu-item .course-body .course-title {
    font-size: 20px;
    margin-bottom: 7px;
}
.bengaledu-item .course-body .course-category {
    display: inline-block;
}
.bengaledu-item .course-body .review-wrap .rating {
    display: inline-block;
    color: #ff3115;
    /* margin-right: 10px;
    padding-right: 10px; */
    /* border-right: 1px solid #ddd; */
    line-height: 10px;
}
.bengaledu-item .course-body .review-wrap ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.bengaledu-item .course-body .review-wrap .review {
    line-height: 10px;
    display: inline-block;
}
.bengaledu-item .course-body .course-desc {
    margin-top: 10px;
    font-size: 12px;
    text-align: justify;
    max-height: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.bengaledu-item .course-body .course-desc p {
    margin: 0 0 22px;
}
.bengaledu-item.blue-color .course-footer {
   background-color: #233568;
    display: inline-block;
    line-height: 34px;
    text-align: center;
    width: 100%;
    color: #fff;
    transition: all 0.3s ease 0s;
    font-weight: 600;
}
.bengaledu-item .course-footer div {
    display: inline-block;
    text-align: center;
    position: relative;
    line-height: 19px;
}
.bengaledu-item .course-footer div a.label {
    font-weight: 500;
    color: #fff;
}
.rs-courses .bengaledu-item .course-footer div a {
    display: block;
    font-size: 14px;
    color: #fff;
}
.course-network ul li a:hover{
    background-color: #233568;
    color: white;
}
/* SLIDER ARROW */


.slick-arrow{
    width: 40px;
    height: 40px;
    padding: 0;
    position: absolute;
    transform: translateY(-50%);
    z-index: 1;
    transition: all .5s ease;
    background-color: white;
    border: 1px solid black;
    color: black;

}
.slick-arrow:hover {
    background-color: #233568;
    color: white;
    border-color: black;
    border: none;
}
.slick-arrow:hover i{
    color: white!important;
}

.arrow-wrap {
    transition: transform .5s;
    position: relative;

}

.prev-cz {
    color: #999;
    position: absolute!important;
    top: -225px;
    left: 0;
    font-size: 1.5em;
}

.prev-cz:hover {
    cursor: pointer;
    color: black;
}
.prev-cl {
    color: #999;
    position: absolute!important;
    top: -225px;
    left: 0;
    font-size: 1.5em;
}

.prev-cl:hover {
    cursor: pointer;
    color: black;
}



.prev-tz {
    color: #999;
    position: absolute!important;
    top: -220px;
    left: 0;
    font-size: 1.5em;
}

.prev-tz:hover {
    cursor: pointer;
    color: black;
}
.next-cz {
    color: #999;
    position: absolute!important;
    top: -225px;
    right: 0;
    font-size: 1.5em;
}

.next-cz :hover {
    cursor: pointer;
    color: black;
}

.next-cl {
    color: #999;
    position: absolute!important;
    top: -225px;
    right: 0;
    font-size: 1.5em;
}

.next-cl :hover {
    cursor: pointer;
    color: black;
}
.next-tz {
    color: #999;
    position: absolute!important;
    top: -220px;
    right: 0;
    font-size: 1.5em;
}

.next-tz:hover {
    cursor: pointer;
    color: black;
}

.innar-box iframe{
    width: 100% !important;
}